/* Custom Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(107, 33, 168, 0.3); }
            50% { box-shadow: 0 0 40px rgba(107, 33, 168, 0.6); }
        }
        @keyframes counter {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
        .animate-fadeInLeft { animation: fadeInLeft 0.8s ease-out forwards; }
        .animate-fadeInRight { animation: fadeInRight 0.8s ease-out forwards; }
        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
        
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Dropdown Animation */
        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        /* Card Hover Effects */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(107, 33, 168, 0.25);
        }
        
        /* Team Card Hover */
        .team-card .team-overlay {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease-out;
        }
        .team-card:hover .team-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        .team-card:hover img {
            transform: scale(1.05);
        }
        .team-card img {
            transition: transform 0.5s ease-out;
        }
        
        /* Button Effects */
        .btn-primary {
            background: linear-gradient(135deg, #6B21A8 0%, #8B5CF6 100%);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #581C87 0%, #7C3AED 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(107, 33, 168, 0.4);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: linear-gradient(135deg, #D97706 0%, #FBBF24 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }
        
        /* Carousel Styles */
        .carousel-container {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .carousel-container::-webkit-scrollbar {
            display: none;
        }
        
        /* Gradient Backgrounds */
        .gradient-hero {
            background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 50%, #6B21A8 100%);
        }
        .gradient-overlay {
            background: linear-gradient(180deg, rgba(30, 27, 75, 0.9) 0%, rgba(107, 33, 168, 0.7) 100%);
        }
        
        /* Pattern Background */
        .pattern-bg {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B21A8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        /* Navigation Link Underline */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #F59E0B, #FCD34D);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        /* Counter Animation */
        .counter-value {
            font-variant-numeric: tabular-nums;
        }
        
        /* Testimonial Card */
        .testimonial-card {
            transition: all 0.4s ease;
        }
        .testimonial-card.active {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(107, 33, 168, 0.2);
        }
        
        /* Service Icon */
        .service-icon {
            transition: all 0.4s ease;
        }
        .service-card:hover .service-icon {
            transform: rotateY(360deg);
        }
        
        /* Form Input Focus */
        .form-input:focus {
            box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.2);
        }